From 11137e572d491529f3488956588d2a7120ef4b17 Mon Sep 17 00:00:00 2001 From: Claudio Cambra Date: Tue, 7 Jan 2025 12:50:54 +0900 Subject: [PATCH] shell_integration/macOS/FileProviderExt: Do not delete an item twice in FileProviderExtension Signed-off-by: Claudio Cambra --- .../FileProviderExt/FileProviderExtension.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/shell_integration/MacOSX/NextcloudIntegration/FileProviderExt/FileProviderExtension.swift b/shell_integration/MacOSX/NextcloudIntegration/FileProviderExt/FileProviderExtension.swift index 58b3f1d81..de02d338f 100644 --- a/shell_integration/MacOSX/NextcloudIntegration/FileProviderExt/FileProviderExtension.swift +++ b/shell_integration/MacOSX/NextcloudIntegration/FileProviderExt/FileProviderExtension.swift @@ -371,7 +371,7 @@ import OSLog removeSyncAction(actionId) } progress.completedUnitCount = 1 - completionHandler(await item.delete()) + completionHandler(error) } return progress } -- 2.30.2